Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / GetRange Method
The zero-based StructList<T> index at which the range starts.
The number of elements in the range.

In This Topic
    GetRange Method (StructList<T>)
    In This Topic
    Creates a shallow copy of a range of elements in the source StructList<T>.
    Syntax
    'Declaration
     
    Public Function GetRange( _
       ByVal index As System.Integer, _
       ByVal count As System.Integer _
    ) As StructList(Of T)
    public StructList<T> GetRange( 
       System.int index,
       System.int count
    )

    Parameters

    index
    The zero-based StructList<T> index at which the range starts.
    count
    The number of elements in the range.

    Return Value

    A shallow copy of a range of elements in the source StructList<T>.
    See Also